home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / MSDOS / (m)aan / CTUTOR.DOC < prev    next >
Text File  |  1988-12-28  |  10KB  |  262 lines

  1.  
  2.  
  3.          Coronado Enterprises C TUTOR                June 30, 1986
  4.  
  5.          READ.ME File
  6.  
  7.  
  8.          Getting Started with the C tutorial
  9.  
  10.          The first thing you should do is to backup the distribution
  11.          diskettes and store the distribution diskettes away in a safe
  12.          place.  Use only the copy for all operations.
  13.  
  14.          Getting started with the TEXT diskette
  15.  
  16.          Before you can begin study of C, you must print out a copy of
  17.          the tutorial text.  The file named PRINTEXT.BAT is designed
  18.          to help you to do this.  Simply type the name PRINTEXT at the
  19.          DOS prompt and all of the tutorial text will be printed for you.
  20.          When the system displays "Name of list device [PRN]:", hit the
  21.          return key to accept the default.  This batch file uses the DOS
  22.          command PRINT.COM to actually do the printing and it has an upper
  23.          limit of 10 files that can be queued up at once.  There is there-
  24.          a pause after each group of print requests to allow the queue to
  25.          empty out, after which you must hit any key to allow printing to
  26.          continue.  If you key these commands in manually, you can print
  27.          in the background, and be using your computer to do something else
  28.          (provided of that the something else doesn't require the printer).
  29.  
  30.          Getting started with the SOURCE diskette
  31.  
  32.          If you desire, a printout of all of the C files can be made using
  33.          the PRINTALL.BAT file included.  Simply type PRINTALL at the
  34.          command prompt with the printer on and lots of paper in place.
  35.          It will print about 150 pages including this file and some other
  36.          definition files.  You may want to edit a copy of the PRINTALL.BAT
  37.          file to only print part of the files initially, and print the
  38.          remainder as you come to them in the lessons.
  39.  
  40.          PRINTALL.BAT uses the file LIST.EXE to actually do the printing.
  41.          This is a program written in C, and included in your tutorial as
  42.          an example program in chapter 14, and compiled for you to use in
  43.          this step.  Since printers are not standard there is a chance
  44.          that LIST.EXE will not work on your printer.  If it doesn't, use
  45.          the file named LIST.COM from the other disk.  LIST.COM was written
  46.          to do the same job, but it was written in Pascal and compiled with
  47.          Turbo Pascal.  Since it uses a different compiler, it may work
  48.          correctly on your printer.  After you gain experience, you can
  49.          debug LIST.C and LISTF.C and compile them for use with
  50.          your particular printer.  If neither works, use whatever method you
  51.          can to print out the files, if you desire to.  It is not really
  52.          necessary to print out the C example files, but sometimes a
  53.          hardcopy is a real conveinience.
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.          Questionnaire on the C Tutorial
  70.  
  71.          What other languages have you programmed in ?
  72.          _____________________________________________________________
  73.          _____________________________________________________________
  74.  
  75.          What other languages would you like to learn ?
  76.          _____________________________________________________________
  77.          _____________________________________________________________
  78.  
  79.          Did you complete the C tutorial?_____________________________
  80.  
  81.          Did you find it helpful?_____________________________________
  82.          _____________________________________________________________
  83.  
  84.          What features would you like to see added ?
  85.          _____________________________________________________________
  86.          _____________________________________________________________
  87.          _____________________________________________________________
  88.  
  89.          Did you find anything missing?_______________________________
  90.          _____________________________________________________________
  91.          _____________________________________________________________
  92.  
  93.          At this time, Coronado Enterprises has completed tutorials on
  94.          on Pascal and C.  Modula-2 is well along the way and should be
  95.          finished around September of 1986.  Other languages are being
  96.          considered but we need your thoughts as to what languages should
  97.          be covered tutorial next.  Please write and let us know your needs.
  98.  
  99.          _______ Enclosed is $10.00 to help cover the cost and time of
  100.                  writing the tutorial which I found useful.
  101.                  Please send me a current list of tutorials.
  102.  
  103.          _______ Enclosed is nothing, I do not wish to pay anything, but I
  104.                  would like a current list of tutorials. I have enclosed a
  105.                  stamped self addressed envelope.
  106.  
  107.          Name   ___________________________________________
  108.  
  109.          Street ___________________________________________
  110.  
  111.          City   ___________________________________________
  112.  
  113.          State, Zip _______________________________________
  114.  
  115.  
  116.          Mail to;             Coronado Enterprises
  117.                               12501 Coronado Ave NE
  118.                               Albuquerque, New Mexico 87122
  119.  
  120.          Program name:         C Tutor
  121.  
  122.          Author name:          Coronado Enterprises
  123.          Address:              12501 Coronado Ave. NE
  124.                                Albuquerque, NM  87122
  125.          Telephone Number:     None
  126.  
  127.          Suggested Donation:   $10.00
  128.          Program Description:
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.          C Tutor is a comprehensive course for the C programming
  137.          language.  Since C is a very transportable language, the
  138.          description here is applicable to most compilers with some
  139.          slight differences.  This course is recommended for the
  140.          experienced programmer who knows about computer programming
  141.          concepts and has used some other high level language.  This is a
  142.          two disk product.  The first diskette contains the tutorial text
  143.          and it is recommended that it be printed by use of an included
  144.          batch file.  The second diskette contains the C source code for
  145.          each of the examples included throughout the tutorial.  These
  146.          examples are meant to be studied and then compiled and run by the
  147.          student.  The examples are short and focus in on the topic of
  148.          discussion.   A description of the various compilers and their
  149.          differences is included in a text file named COMPILER.DOC to aid
  150.          you in geeting the source files to compile.
  151.          All of the points of the C language, including proper structured
  152.          programming techniques, are covered at the elementary to the more
  153.          sophisticated levels in easy to read well wriiten text.
  154.          The authors appear to be highly in both the use of the programming
  155.          language and the art of instructional design.
  156.  
  157.          Required, of course, is a complete IBM hardware setup, including
  158.          at least one disk drive, and some version of a C compiler.
  159.  
  160.          Also available, in similar format, is a tutorial on PASCAL.
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.          -------------------------------------------------------------
  203.          Disk No  577  C TUTOR (disk 1 of 2)                     v1 DS
  204.          -------------------------------------------------------------
  205.          This is the first disk of the C Tutor system.
  206.          This is a comprehensive introductory tutorial to programming
  207.          in the C language. This disk contains the textual tutorial
  208.          material in a series of .TXT files.
  209.  
  210.          ------------  C Tutor
  211.          READ     ME   Short program description and printing
  212.                        instructions
  213.          PRINTEXT BAT  Batch file to print all .TXT files
  214.          TABCONT  TXT  Tutorial table of contents
  215.          INTRO    TXT  Tutorial introduction
  216.          CHAP1    TXT  Tutorial chapter 1
  217.          CHAP2    TXT  "        "       2
  218.          CHAP3    TXT  "        "       3
  219.          CHAP4    TXT  "        "       4
  220.          CHAP5    TXT  "        "       5
  221.          CHAP6    TXT  "        "       6
  222.          CHAP7    TXT  "        "       7
  223.          CHAP8    TXT  "        "       8
  224.          CHAP9    TXT  "        "       9
  225.          CHAP10   TXT  "        "       10
  226.          CHAP11   TXT  "        "       11
  227.          CHAP12   TXT  "        "       12
  228.          CHAP13   TXT  "        "       13
  229.          CHAP14   TXT  "        "       14
  230.          LIST     COM  Program to print files
  231.  
  232.          -------------------------------------------------------------
  233.          Disk No  578  C TUTOR (Disk 2 of 2)                        v1
  234.          -------------------------------------------------------------
  235.          This is the second disk of the C Tutor system.  It contains the
  236.          example C programs as discussed in the Text portion of the
  237.          tutorial.
  238.  
  239.          -----------   C Tutor
  240.          READ     ME   Short text file to describe program and
  241.                        printing process
  242.          COMPILER DOC  Discussion of various compilers
  243.          PRINTALL BAT  Batch file to print out all source C files
  244.          ???????  C    76 Source code files for miscellaneous
  245.                        applications
  246.          TEST     BAT
  247.          LIST     EXE  program to list source files
  248.          STRUCT   DEF  Data file structure definition
  249.          VC       EXE  Executable calculator file
  250.          VC       DOC  Short documentation about the Calculator
  251.                        program
  252.          HELP          Calculations text file
  253.          AMORT         Calculations text file
  254.          PAYMENT       Calculations text file
  255.          TEST          Calcualtions text file
  256.  
  257.              PC-SIG (Software Interest Group)
  258.              1030 D DUANE AVE.
  259.              SUNNVALE CA., 94086
  260.              PH# 408-730-9291
  261.  
  262.